pageScope

用途

说到GSP 的约束力,Grials 的标签库是在 GSP 里被执行和运用的.用 set 设置变量,通过控制器模型控制,整个page 都可以使用..

示例

class BookTagLib {
	def parent = { attrs, body ->
		pageScope.parent = "John"
	}
	def child = { attrs, body ->
		out << "My parent is ${pageScope.parent}"
	}
}

<g:parent>
    <g:child /> // Outputs "My parent is John"
</g:parent>

描述

pageScope 变量包含一个基础的model,被页面熟练操作. 也可以把变量从父标签传递给子标签..